import { Grid, Tab, Tabs, Typography } from '@mui/material'; import { Box, Container } from '@mui/system'; import Image from 'next/image'; import React, { useState } from 'react'; import ProductCard from '../../components/product-card/ProductCard'; import TabPanel from '../../components/tab-panel/TabPanel'; const SingleProduct = () => { const [value, setValue] = useState(0); const handleChange = (event, newValue) => { setValue(newValue); }; function a11yProps(index) { return { id: `simple-tab-${index}`, 'aria-controls': `simple-tabpanel-${index}`, }; } return ( Minimalist Printed Mug product Our simple and sturdy mugs are made to last. With a minimalist desings you will soon be enjoying your next brew. $20 Mugs & Cups Other Product You May Like ); }; export default SingleProduct;